home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 353_02 / usetime.cpp < prev    next >
C/C++ Source or Header  |  1992-01-18  |  750b  |  29 lines

  1.                                 // Chapter 6 - Program 12
  2.  
  3. #include <iostream.h>
  4. #include "date.h"
  5. #include "time.h"
  6.  
  7. void main(void)
  8. {
  9. date today;
  10. time_of_day now, lunch(12, 15);
  11.  
  12.    cout << "This program executed on " << today.get_date_string() <<
  13.            " at " << now.get_time_string() << "\n";
  14.  
  15.    cout << "We are planning lunch at " << lunch.get_time_string() <<
  16.            " tomorrow.\n";
  17.  
  18.    lunch.set_time(13);
  19.    cout << "We decided to move lunch to "<< lunch.get_time_string()
  20.         << " due to a late meeting.\n";
  21. }
  22.  
  23.  
  24. // Result of execution
  25.  
  26. // This program executed on Jan 20, 1991 at 10:34:16
  27. // We are planning lunch at 12:15:00 tomorrow.
  28. // We decided to move lunch to 13:00:00 due to a late meeting.
  29.